Package de.yaams.extensions.basemap.tiled.mapeditor.actions

Source Code of de.yaams.extensions.basemap.tiled.mapeditor.actions.MergeLayerDownAction

/*
* Tiled Map Editor, (c) 2004-2006
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation; either version 2 of the License, or (at your option) any later
* version.
*
* Adam Turk <aturk@biggeruniverse.com> Bjorn Lindeijer <bjorn@lindeijer.nl>
*/

package de.yaams.extensions.basemap.tiled.mapeditor.actions;

import javax.swing.KeyStroke;

import de.yaams.extensions.basemap.tiled.core.Map;
import de.yaams.extensions.basemap.tiled.mapeditor.MapEditor;
import de.yaams.extensions.basemap.tiled.mapeditor.Resources;

/**
* Merges the current layer with the one below and selects the merged layer.
*
* @version $Id$
*/
public class MergeLayerDownAction extends AbstractLayerAction {
  /**
   *
   */
  private static final long serialVersionUID = -7894361326326008738L;

  public MergeLayerDownAction(MapEditor editor) {
    super(editor, Resources.getString("action.layer.mergedown.name"), Resources.getString("action.layer.mergedown.tooltip"));

    putValue(ACCELERATOR_KEY, KeyStroke.getKeyStroke("shift control M"));
  }

  @Override
  protected void doPerformAction() {
    Map map = editor.getCurrentMap();
    int layerIndex = editor.getCurrentLayerIndex();

    if (layerIndex > 0) {
      map.mergeLayerDown(layerIndex);
      editor.setCurrentLayer(layerIndex - 1);
    }
  }
}
TOP

Related Classes of de.yaams.extensions.basemap.tiled.mapeditor.actions.MergeLayerDownAction

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.